/* Private variable declarations
*/
-static GdkEventFunc _gdk_event_func = NULL; /* Callback for events */
-static gpointer _gdk_event_data = NULL;
-static GDestroyNotify _gdk_event_notify = NULL;
-
static void gdk_event_constructed (GObject *object);
static void gdk_event_finalize (GObject *object);
if (gdk_drag_handle_source_event (event))
return;
- if (gdk_surface_handle_event (event))
- return;
-
- if (_gdk_event_func)
- (*_gdk_event_func) (event, _gdk_event_data);
+ gdk_surface_handle_event (event);
}
/*********************************************
}
}
-/**
- * gdk_event_handler_set:
- * @func: the function to call to handle events from GDK.
- * @data: user data to pass to the function.
- * @notify: the function to call when the handler function is removed, i.e. when
- * gdk_event_handler_set() is called with another event handler.
- *
- * Sets the function to call to handle all events from GDK.
- *
- * Note that GTK+ uses this to install its own event handler, so it is
- * usually not useful for GTK+ applications. (Although an application
- * can call this function then call gtk_main_do_event() to pass
- * events to GTK+.)
- **/
-void
-gdk_event_handler_set (GdkEventFunc func,
- gpointer data,
- GDestroyNotify notify)
-{
- if (_gdk_event_notify)
- (*_gdk_event_notify) (_gdk_event_data);
-
- _gdk_event_func = func;
- _gdk_event_data = data;
- _gdk_event_notify = notify;
-}
-
/**
* gdk_event_new:
* @type: a #GdkEventType
typedef struct _GdkEventSequence GdkEventSequence;
typedef union _GdkEvent GdkEvent;
-/**
- * GdkEventFunc:
- * @event: the #GdkEvent to process.
- * @data: (closure): user data set when the event handler was installed with
- * gdk_event_handler_set().
- *
- * Specifies the type of function passed to gdk_event_handler_set() to
- * handle all GDK events.
- */
-typedef void (*GdkEventFunc) (GdkEvent *event,
- gpointer data);
-
/**
* GdkEventType:
* @GDK_NOTHING: a special code to indicate a null event.
gdouble *x,
gdouble *y);
-GDK_AVAILABLE_IN_ALL
-void gdk_event_handler_set (GdkEventFunc func,
- gpointer data,
- GDestroyNotify notify);
-
GDK_AVAILABLE_IN_ALL
void gdk_event_set_display (GdkEvent *event,
GdkDisplay *display);